Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@babel/plugin-transform-flow-strip-types
Advanced tools
Strip flow type annotations from your output code.
The @babel/plugin-transform-flow-strip-types npm package is a plugin for Babel, a JavaScript compiler, that removes type annotations from Flow, a static type checker for JavaScript. This allows developers to write type-safe code during development and strip out these annotations for production builds, resulting in clean JavaScript that can be executed in environments that do not support Flow.
Stripping Flow Type Annotations
This feature removes Flow type annotations from your JavaScript files, converting typed code into plain JavaScript. The code sample shows a function with Flow types that are stripped out after transformation.
import { foo } from 'bar';
function square(n: number): number {
return n * n;
}
// Transformed to:
import { foo } from 'bar';
function square(n) {
return n * n;
}
Similar to @babel/plugin-transform-flow-strip-types, this Babel plugin strips TypeScript annotations from the code. While both plugins serve a similar purpose of removing type annotations, they cater to different type systems: Flow for the former and TypeScript for the latter.
This plugin also deals with Flow types but instead of stripping them, it converts them into comments. This can be useful for preserving type annotations in the transpiled output without affecting the runtime behavior.
Strip flow type annotations from your output code.
See our website @babel/plugin-transform-flow-strip-types for more information.
Using npm:
npm install --save-dev @babel/plugin-transform-flow-strip-types
or using yarn:
yarn add @babel/plugin-transform-flow-strip-types --dev
FAQs
Strip flow type annotations from your output code.
We found that @babel/plugin-transform-flow-strip-types demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.